2023-12-30 05:29:53 +00:00
|
|
|
import vue from '@vitejs/plugin-vue';
|
2024-01-05 23:30:30 +00:00
|
|
|
import vike from 'vike/plugin'; // eslint-disable-line import/extensions
|
2023-12-30 05:29:53 +00:00
|
|
|
|
|
|
|
import postCssGlobalData from '@csstools/postcss-global-data';
|
|
|
|
import postCssNesting from 'postcss-nesting';
|
|
|
|
import postCssCustomMedia from 'postcss-custom-media';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
plugins: [
|
|
|
|
vue(),
|
|
|
|
vike({
|
|
|
|
redirects: {
|
|
|
|
'/': '/updates',
|
|
|
|
},
|
2024-01-26 00:31:15 +00:00
|
|
|
trailingSlash: true, // for some reason /tags breaks without this
|
2023-12-30 05:29:53 +00:00
|
|
|
}),
|
|
|
|
],
|
|
|
|
css: {
|
|
|
|
postcss: {
|
|
|
|
plugins: [
|
|
|
|
postCssGlobalData({
|
|
|
|
files: ['./assets/css/breakpoints.css'],
|
|
|
|
}),
|
|
|
|
postCssNesting(),
|
|
|
|
postCssCustomMedia(),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'#': __dirname,
|
|
|
|
'#root': __dirname,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|