我正在使用自定义server.js文件编写Next.js应用程序,但无法加载CSS-我一直在浏览器控制台中看到以下内容:
The resource from “http://localhost:3000/_next/
static/development/pages/index.js?ts=1552499710032”
was blocked due to MIME type (“text/html”)
mismatch (X-Content-Type-Options: nosniff)
我不知道为什么。据我所知,我已经像以前的工作版本那样配置了我的应用程序。这是我的next.config.js文件:
const withCSS = require('@zeit/next-css');
const withImages = require('next-images');
const path = require('path')
const Dotenv = require('dotenv-webpack')
require('dotenv').config()
module.exports = withImages(withCSS({
webpack: config => {
// Fixes npm packages that depend on `fs` module
config.node = {
fs: 'empty'
}
config.plugins = config.plugins || []
config.plugins = [
...config.plugins,
// Read the .env file
new Dotenv({
path: path.join(__dirname, '.env'),
systemvars: true
})
]
return config
}
}))
这是我的server.js文件:
const express = require('express')
const next = require('next')
const port = parseInt(process.env.PORT, 10) || 3000
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
const path = require('path');
const options = {
root: path.join(__dirname, '/static'),
headers: {
'Content-Type': 'text/plain;charset=UTF-8',
}
};
app.prepare().then(() => {
const server = express()
server.get('/robots.txt', (req, res) => {
return res.status(200).sendFile('robots.txt', options)
});
server.get('/sitemap.xml', (req,res) => {
return res.status(200).sendFile('sitemap.xml', options)
});
server.get('/', (req, res) => {
return app.render(req, res, '/', req.query)
})
server.listen(port, err => {
if (err) throw err
console.log(`> Ready on http://localhost:${port}`)
})
})
我通过使用node server.js
运行我的应用程序,并使用import "./styles/root.css"
(我的一个也是唯一的CSS文件)导入了CSS,所以在那没有什么奇怪的。怎么了?
编辑:这很简单,可能是一个错误。我在这里打开了一个报告:https://github.com/zeit/next.js/issues/6647。
答案 0 :(得分:1)
你失踪了
server.get('*', (req, res) => {
return handle(req, res)
})
在您的server.js中。如果您取消注释上面的代码并重新启动服务器,则您的github存储库将正常工作