motto/next.config.mjs
2024-09-18 15:39:27 +00:00

10 lines
266 B
JavaScript

import { createVanillaExtractPlugin } from '@vanilla-extract/next-plugin'
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
}
const withVanillaExtract = createVanillaExtractPlugin()
export default withVanillaExtract(nextConfig)