-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
40 lines (38 loc) · 968 Bytes
/
astro.config.mjs
File metadata and controls
40 lines (38 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'astro/config';
import yaml from '@rollup/plugin-yaml';
import svelte from '@astrojs/svelte';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
/**
* @docs https://astro.build/config
*/
export default defineConfig({
devToolbar: {
enabled: false
},
integrations: [svelte()],
vite: {
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
charset: false,
// Global addition styles
additionalData: [
// Add other imports as needed
'@use "@/styles/tools/functions/_rem.scss" as *;',
'@use "@/styles/tools/mixins/_line-clamp.scss" as *;'
].join('\n')
}
}
},
plugins: [yaml()],
resolve: {
alias: {
'~': path.resolve(__dirname, './'),
'@': path.resolve(__dirname, './src')
}
}
}
});