Answers for "svelte global styling"

0

svelte global styling

// ... 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/` },
      ],
    }),
Posted by: Guest on January-15-2022

Browse Popular Code Answers by Language