Commit 62ab562f by jaymehta

next.conf

1 parent 1da2081c
...@@ -5,18 +5,19 @@ const nextConfig = { ...@@ -5,18 +5,19 @@ const nextConfig = {
swcMinify: true, swcMinify: true,
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => { webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
config.plugins.push( config.plugins.push(
new webpack.ProvidePlugin({ new webpack.ProvidePlugin({
$: "jquery", $: "jquery",
jQuery: "jquery", jQuery: "jquery",
"window.jQuery": "jquery", "window.jQuery": "jquery"
})); })
);
return config; return config;
}, },
env: { env: {
stripePublishableKey: "pk_test_51LeAqWSD8iV80gmAKccLEZAm1mYnjlzkL1cJxWJKFaHEMPzArGRRECPOG64e8GX2Hd112zBq3vQ3xSVb5IZQCRmh00N3DRtRse" stripePublishableKey: "pk_test_51LeAqWSD8iV80gmAKccLEZAm1mYnjlzkL1cJxWJKFaHEMPzArGRRECPOG64e8GX2Hd112zBq3vQ3xSVb5IZQCRmh00N3DRtRse"
}, },
images: { images: {
domains: ["localhost", "apizango.logicloop.io"] domains: ["localhost", "apizango.logicloop.io", "api.zangoexperiences.com"]
} }
}; };
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!