We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576aef8 commit dedb0f3Copy full SHA for dedb0f3
astro.config.mjs
@@ -9,23 +9,24 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
9
10
// https://astro.build/config
11
export default defineConfig({
12
- integrations: [
13
- tailwind({
14
- applyBaseStyles: false,
15
- }),
16
- react(),
17
- mdx(),
18
- ],
19
- vite: {
20
- server: {
21
- watch: {
22
- usePolling: true,
23
- }
24
- },
25
- resolve: {
26
- alias: {
27
- '@': path.resolve(__dirname, './src'),
28
+ base: '/drc-static',
+ integrations: [
+ tailwind({
+ applyBaseStyles: false,
+ }),
+ react(),
+ mdx(),
+ ],
+ vite: {
+ server: {
+ watch: {
+ usePolling: true,
+ }
+ },
+ resolve: {
+ alias: {
+ '@': path.resolve(__dirname, './src'),
29
},
30
31
32
});
0 commit comments