我正在将next.js(7.0.2)添加到现有项目中,但无法弄清楚为什么Link模块不能加载具有import 'style.css'
的页面。
我遵循了@zeit/next-css的说明以及Next.js/Express的集成。
我安装了以下软件包
next.config.js
// ./next.config.js file
const withCSS = require('@zeit/next-css')
module.exports = withCSS()
index.js
// ./pages/index.js file
import Link from 'next/link'
const Index = () => (
<div>
<p>Hello Next.js</p>
<p>
<Link href="/test"><a>test</a></Link>
</p>
</div>
)
export default Index
test.js
// ./pages/test.js file
import "../style.css"
export default () => <div className="example">Hello World!</div>
style.css
// ./style.css file
.example {
font-size: 50px;
}
预期的行为:“链接”模块将使用CSS加载页面,就像其他页面一样。
实际行为:除具有import 'my.css'
的页面外,所有页面都将加载。我可以直接通过网址加载该页面。
EG-
更新:如果我注释掉import "../style.css"
,则文件加载(没有CSS)。因此,在服务器处理路由的css处理中似乎有些不适合我的设置。
@Darryl-这是我明确的初始化文件中的相关片段。整个文件可以在https://github.com/tagyoureit/nodejs-poolController/blob/6.0-DEV/src/lib/comms/server.js#L33上找到(当前迭代)。
function startServerAsync(type) {
...
const _next = require('next')
const dev = process.env.NODE_ENV !== 'production'
...
// servers is an object that holds http/https/socketio/mdns and other servers
// type='http' in current testing
servers[type].next = _next({ dev })
servers[type].next.prepare()
.then(() => {
servers[type].app = express();
servers[type].server =
container.http.createServer(servers[type].app);
configExpressServer(servers[type].app, express, servers[type].next);
servers[type].server = servers[type].server.listen(servers[type].port, function () {
container.logger.verbose('Express Server ' + type + ' listening at port %d', servers[type].port);
container.io.init(servers[type].server, type)
resolve('Server ' + type + ' started.');
});
}
// assign static/api routes
function configExpressServer(app, express, _next) {
// use next as router
const handle = _next.getRequestHandler()
// many app.get / app.use statements
...
// catch all to route through next
app.get('*', (req, res) => {
const { parse } = require('url')
const parsedUrl = parse(req.url, true)
const { pathname, query } = parsedUrl
handle(req, res, parsedUrl)
})
}
答案 0 :(得分:0)
我也遇到了这个问题,在花了更多时间之后,我终于找到了解决方案,首先您要通过布局管理代码,然后在使用布局的任何页面中都必须添加:import Link from'next / link '仅在导入布局线之后。我希望这能解决您的问题