1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/test/integration/basic/pages/using-asset/asset.js
Arunoda Susiripala 60cb06c1ba Improved next/asset support (#3664)
* Allow next/asset to work properly with dynamic assetPrefix
Now we use webpack's publicPath via client side.

* Add test cases for dynamic assetPrefix and next/asset.
2018-02-02 21:09:24 +01:00

11 lines
322 B
JavaScript

import asset from 'next/asset'
export default () => (
<div id='asset-page'>
<img id='img1' src={asset('/the-image')} />
<img id='img2' src={asset('the-image')} />
<img id='img3' src={asset('http://the-image.com/the-image')} />
<img id='img4' src={asset('https://the-image.com/the-image')} />
</div>
)