10 lines
266 B
JavaScript
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)
|