motto/next.config.mjs

11 lines
266 B
JavaScript
Raw Permalink Normal View History

2024-09-16 19:44:19 +00:00
import { createVanillaExtractPlugin } from '@vanilla-extract/next-plugin'
/** @type {import('next').NextConfig} */
2024-09-18 15:39:27 +00:00
const nextConfig = {
output: "standalone",
}
2024-09-16 19:44:19 +00:00
const withVanillaExtract = createVanillaExtractPlugin()
export default withVanillaExtract(nextConfig)