mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
dccbc1ea35
* Update examples/with-antd-mobile - Reduced noise - Simplify setup * Create more more complex example
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
const withCSS = require('@zeit/next-css')
|
|
|
|
// fix: prevents error when .css files are required by node
|
|
if (typeof require !== 'undefined') {
|
|
// eslint-disable-next-line
|
|
require.extensions['.css'] = (file) => {}
|
|
}
|
|
|
|
module.exports = withCSS()
|