love.js
love.js copied to clipboard
window.resizable in conf.lua
Using window.resizable=true in conf.lua does result in 1x1px canvas on the html page
function love.conf(t)
t.window.fullscreen = false
t.window.fullscreentype = "desktop"
t.window.width = 700
t.window.height = 500
t.window.resizable = true
end