mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 20:19:35 +01:00
16 lines
288 B
TypeScript
Executable File
16 lines
288 B
TypeScript
Executable File
// Build Configuration: https://go.nuxtjs.dev/config-build
|
|
export default {
|
|
babel: {
|
|
plugins: [
|
|
['@babel/plugin-proposal-private-methods', { loose: true }]
|
|
],
|
|
},
|
|
postcss: {
|
|
preset: {
|
|
features: {
|
|
"focus-within-pseudo-class": false
|
|
}
|
|
}
|
|
}
|
|
}
|