我有一个next.js项目,想使用一个组件(来自npm),该组件从typeface-montserrat内部导入。
Next.js给出错误:
/usr/bin/env V=hello bash -c 'echo $V somestring'
我的next.config.js如下
<path>/node_modules/typeface-montserrate/index.css:2
@font-face {
^
Syntax Error: Invalid or unexpected token
答案 0 :(得分:0)
您能为您的应用考虑此配置,以代替当前的next.config.js
吗?
// next.config.js
const withCSS = require('@zeit/next-css')
module.exports = withCSS({
cssModules: true
})