ode_to_snack/next.config.js

15 lines
326 B
JavaScript
Raw Permalink Normal View History

2024-07-05 16:06:02 +00:00
const { createVanillaExtractPlugin } = require('@vanilla-extract/next-plugin')
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
2024-07-05 16:06:02 +00:00
trailingSlash: true,
images: {
unoptimized: true,
}
2024-07-05 16:06:02 +00:00
}
2024-07-05 16:06:02 +00:00
const withVanillaExtract = createVanillaExtractPlugin()
module.exports = withVanillaExtract(nextConfig)