Skip to content

Commit

Permalink
Fix import of abstract files
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed Oct 23, 2024
1 parent 57b77ad commit 693de03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ui/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export default defineConfig({
preprocessorOptions: {
scss: {
additionalData: `
@use "@marshallku/ui/styles/abstracts/variables" as *;
@use "@marshallku/ui/styles/abstracts/palette" as *;
@use "@marshallku/ui/styles/abstracts/fonts" as *;
@use "@marshallku/ui/styles/abstracts/mixins" as *;
@use "src/styles/abstracts/variables" as *;
@use "src/styles/abstracts/palette" as *;
@use "src/styles/abstracts/fonts" as *;
@use "src/styles/abstracts/mixins" as *;
`,
},
},
Expand Down

0 comments on commit 693de03

Please sign in to comment.