1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/packages/next/build
Connor Davis 419bec0b9b Fix #5674 Append crossOrigin on the client side too, add config option for crossOrigin (#5873)
# Fixes https://github.com/zeit/next.js/issues/5674

This adds config option
```js
// next.config.js
module.exports = {
  crossOrigin: 'anonymous'
}
```
This config option is defined in the webpack Define Plugin at build.
`Head` and `NextScript` now use the config option, if it's not explicitly set on the element.
This value is now passed to Webpack so it can add it to scripts that it loads.
The value is now used in `PageLoader` (on the client) so it can add it to the scripts and links that it loads.
Using `<Head crossOrigin>` or `<NextScript crossOrigin>` is now deprecated.
2018-12-13 01:05:21 +01:00
..
babel Add tsc type checking (#5826) 2018-12-05 21:45:50 +01:00
webpack Fix paths when built on windows (#5795) 2018-12-10 14:48:06 +01:00
compiler.ts Run compilers sequentially when in lambdas mode (#5862) 2018-12-11 21:46:23 +01:00
generate-build-id.ts Convert babel plugins to typescript (#5789) 2018-12-02 18:30:00 +01:00
index.ts Run compilers sequentially when in lambdas mode (#5862) 2018-12-11 21:46:23 +01:00
is-writeable.ts Add Typescript types for builds functions (#5791) 2018-12-03 14:18:52 +01:00
webpack-config.js Fix #5674 Append crossOrigin on the client side too, add config option for crossOrigin (#5873) 2018-12-13 01:05:21 +01:00
write-build-id.ts Add Typescript types for builds functions (#5791) 2018-12-03 14:18:52 +01:00