I'm very new to azure,when i deploying simple openlayer app to azure i am facing below issue
Uncaught TypeError: Failed to resolve module specifier "ol/Map.js". Relative references must start with either "/", "./", or "../".
main.js
import Map from 'ol/Map.js';
import OSM from 'ol/source/OSM.js';
import TileLayer from 'ol/layer/Tile.js';
import View from 'ol/View.js';
const map = new Map({
layers: [
new TileLayer({
source: new OSM(),
}),
],
target: 'map',
view: new View({
center: [0, 0],
zoom: 2,
}),
});

