📜  苗条的全局样式 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:59.692000             🧑  作者: Mango

代码示例1
// ... other imports
import alias from "@rollup/plugin-alias";

// ..
  plugins: [
    // ... after typescript({..})
    
    alias({
      entries: [
        // If you add a new top-level-folder besides src which you want to use, add it here
        { find: /^src(\/|$)/, replacement: `${__dirname}/src/` },
      ],
    }),