We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
netlify-cms seems not provide cms.css which is required in lib/entry.js. The provided package now looks like as following:
cms.css
lib/entry.js
The following line in lib/entry.js causes a fatal error in webpack compilation process.
https://github.com/medfreeman/nuxt-netlify-cms-module/blob/master/lib/entry.js#L12
... const CSS = require("netlify-cms/dist/cms.css"); ...
Successfully compiled after modified like this, and module works fine:
/* global REQUIRE_EXTENSIONS */ /* eslint-disable import/order */ function requireAll(r) { r.keys().forEach(r); } const CMS = require("netlify-cms"); if (REQUIRE_EXTENSIONS) { requireAll(require.context("extensions/", true, /\.js$/)); } // const CSS = require("netlify-cms/dist/cms.css"); module.exports = { CMS, // CSS };
Is this a known issue?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi! Yes, it comes from netlify-cms v2.X I'll probably either make a breaking change to support this, or make it optional. Thanks!
Sorry, something went wrong.
6800ea4
No branches or pull requests
netlify-cms seems not provide
cms.css
which is required inlib/entry.js
. The provided package now looks like as following:The following line in
lib/entry.js
causes a fatal error in webpack compilation process.https://github.com/medfreeman/nuxt-netlify-cms-module/blob/master/lib/entry.js#L12
Successfully compiled after modified like this, and module works fine:
Is this a known issue?
Thanks!
The text was updated successfully, but these errors were encountered: